Skip to main content
Version: v3.x.x

Try out Hello Plugin

Allxon Octo SDK is implemented in C++ and is available for 3rd party developers to build plugins to connect devices to Allxon Portal. By using Allxon Octo SDK, you can build your own application to enhance the management and usability of your devices on Allxon Portal. We call the application "plugin".

Let’s explore Hello Plugin built by Allxon Octo SDK and learn what a plugin looks like.

Requirements

Your device must come online on Allxon Portal.

info

Following the steps below to get your device online on Allxon Portal:

  1. Register an account on Allxon Portal.
  2. Create a new sub-group naming as Sandbox.
  3. Install Allxon Agent on your device.
  4. Get a pairing code on your device. Then add your device to Sandbox group.

Run Hello Plugin

Download Plugin Package

Download Hello Plugin archive file and extract it. We call this archive a "plugin package".

mkdir extracted_folder
tar -xf plugin-hello-X.X.X-linux-x86_64.tar.gz -C extracted_folder
Notice

Check your platform and CPU architecture. For Linux, we only tested on Ubuntu (> 18.04) and NVIDIA Jetson (> L4T R32.6.1 )

And you will see an extracted folder hierarchy like this:

.
├── [APP_GUID]
│ ├── plugin-hello
│ ├── plugin_alert.json
│ ├── plugin_command_ack.json
│ ├── plugin_state.json
│ ├── plugin_update_template.json
│ └── uninstall_plugIN.sh
└── install_plugIN.sh

1 directory, 7 files

The App GUID represents this plugin's ID, uninstall_plugIN.sh and install_plugIN.sh are used to install and uninstall your plugin.

tip

An App GUID corresponds to a plugin on a particular platform. If you need to deploy plugins on three platforms, you need to obtain different App GUIDs, each for the three respective platforms.

Execute Plugin

Next, you can manually execute the plugin.

cd extracted_folder/[APP_GUID]
./plugin-hello $(pwd)

Install Plugin

Alternatively, you can install the plugin on your device through Plugin Installer Script. Once installed, the plugin starts automatically.

sudo bash -c "$(wget -qO - https://get.allxon.net/plugIN/linux)" -s --app-guid [APP_GUID] --from-path [PLUGIN_PACKAGE]

# For Example
sudo bash -c "$(wget -qO - https://get.allxon.net/plugIN/linux)" -s --app-guid a8e873a1-e5df-43a2-928a-745ff9c94dfb --from-path plugin-hello-X.X.X-linux-x86_64.tar.gz

Yay~ 🥳 Now, you should see Hello Plugin online on your device page.

screenshot_hello_plugin_finished